home *** CD-ROM | disk | FTP | other *** search
/ Precision Software Appli…tions Silver Collection 1 / Precision Software Applications Silver Collection Volume One (PSM) (1993).iso / tutor / dosguide.exe / HELPDOS.ZIP / TERMSJ-R.HLP < prev    next >
Text File  |  1985-09-03  |  6KB  |  102 lines

  1. #K (Kilobyte):  A measure of computer storage equal to 1,024 bytes (or
  2. characters) of information.
  3. #Mb (Megabyte):  A measure of computer storage.  One megabyte is approximately
  4. one million bytes (characters) of information.
  5. #Parallel Printer Interface:  An interface card (adapter card) which provides
  6. the interface to a printer with a parallel port.  In some computers, it also
  7. provides the interface for a non-graphics (text) display screen.  With a
  8. parallel interface, all eight bits representing a character are sent to the
  9. printer at one time.  This is distinguished from a Serial Interface, which sends
  10. each bit of a character one at a time.
  11. #Parameter:  A value passed to a command which gives the command specific
  12. instructions.  Most DOS commands have one or more parameters.
  13.  
  14. For example, consider the DOS command MKDIR.  MKDIR has the form:
  15.  
  16.     MKDIR [d:] path
  17.  
  18. MKDIR has two parameters, d: and path.  The d: parameter is optional (indicated
  19. by the brackets); path is a required parameter.  When a MKDIR command is
  20. entered, the parameters specified are passed to the MKDIR program.  MKDIR then
  21. processes the request based upon the values of those parameters.
  22. #Parent Directory:  A directory which has subdirectories.  For example, you may
  23. have a subdirectory named BUDGET.  If BUDGET is a subdirectory of the root
  24. directory, then the root directory is said to be the parent directory of
  25. BUDGET.  If you also have a directory within BUDGET, named DATA, then BUDGET is
  26. the parent directory of DATA.
  27.  
  28. See also DIRECTORY PATH and SUBDIRECTORY.
  29. #Path  (See Directory Path)
  30. #Piping:  A DOS feature which allows screen output of one command or program to
  31. be used as input to another command or program.  Piping also chains commands or
  32. programs together.  The bar character | denotes piping. For example, in the
  33. command: DIR | SORT   the screen output of DIR (a directory listing) is passed
  34. as input to SORT.
  35.  
  36. See also CHAINING COMMANDS, FILTER and REDIRECTION for related information.
  37.  
  38. See PIPING in the ADVANCED menu for detail usage information.
  39. #Pixel:  A single dot on a graphics display.  Also called a pel (for picture
  40. element).
  41. #Printer Echo:  The process of printing information at the same time it is
  42. displayed on the screen.  This is activated by holding down the CTRL key and
  43. pressing the PRTSC key.  Pressing this key combination again turns printer echo
  44. off.
  45.  
  46. Note:  Some computers activate printer echo differently.  For example, on the
  47. TANDY 1000 computer, the PRINT key turns printer echo on and off.
  48. #Prompt:  A request from a program (or DOS) for input from the keyboard.  The
  49. standard DOS prompt is "d>", where "d" is the default drive letter.  This
  50. indicates that DOS is ready for your command.  DOS has a command called PROMPT
  51. which allows you to change the form of the DOS prompt.
  52.  
  53. See also SYSTEM PROMPT.
  54. #RAM:  Random Access Memory.  Memory used by the computer to hold computer
  55. instructions and data during program execution.  RAM can be added to the
  56. computer to increase the amount of available memory.  The contents of RAM are
  57. lost when the computer's power is turned off and when DOS is restarted.
  58. #RAM Disk:  A portion of memory (RAM) that is used to simulate a disk drive.
  59. This treats a portion of the machine's memory as though it were a diskette.  You
  60. can put programs on a RAM disk and run them from that disk, and you can read and
  61. write data to that disk.  Information is read and written extremely fast, since
  62. no physical diskette has to be spun and accessed.  The drawbacks of RAM disks
  63. are the amount of memory they occupy (the amount of memory allocated to a RAM
  64. disk reduces your available memory by an equal amount), and their contents are
  65. lost when DOS is restarted or the power supply is interrupted.  Programs which
  66. create RAM disks may be purchased.  DOS Version 3 includes a RAM disk program,
  67. VDISK.  RAM disks are also called "Virtual Disks."
  68. #ROM:  Read Only Memory.  This type of memory contains non-erasable computer
  69. instructions.  ROM instructions are built in by the computer manufacturer.  They
  70. contain instructions vital to the operation of the computer, and usually a
  71. version of the BASIC programming language.
  72. #Reboot:  To restart the operating system.  When DOS is started at the time the
  73. computer's power is turned on, it is said to be "booted."  Rebooting is done by
  74. holding down the CTRL key, the ALT key and then pressing the DEL key.  This is
  75. also called a "System Reset."
  76. #Redirection:  A DOS feature which allows a command to direct its output to a
  77. device other than the screen or to receive its input from a device other than
  78. the keyboard.  The symbols <, > and >> indicate redirection.  For example, the
  79. command DIR > PRN will send the output of DIR (a directory listing) to the
  80. printer.
  81.  
  82. See PIPING and CHAINING COMMANDS related information.
  83.  
  84. See REDIRECT in the ADVANCED menu for detail usage information.
  85. #Replaceable Parameters:  The parameter variables of a batch file which may
  86. be assigned values at the time the batch file is started.  There are ten
  87. replaceable parameters available to a batch file: %0 through %9.
  88.  
  89. See %0-%9 in the BATCH menu for more information.
  90. #Retained Line:  The previous command entered to DOS.  When you enter a command,
  91. DOS stores a copy of it, called the retained line, in memory.  The F1, F2, F3,
  92. F4, F5, INS and DEL let you retrieve and edit the retained line.  This
  93. convenient feature lets you make corrections to or reissue the previous command
  94. without retyping the entire command.
  95. #Root Directory:  The highest disk directory in a hierarchy of directories. The
  96. \ is the symbol for the root directory.  This is the original directory placed
  97. on the disk when it is formatted. The root directory of a double-sided diskette
  98. can hold 112 files.  The root directory of a fixed disk is limited only by the
  99. available space on the disk.
  100.  
  101. See also DIRECTORY and SUBDIRECTORY for related information.
  102.